home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
compiler
/
small_c
/
cb
/
sources
/
stdio.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1985-09-12
|
368 b
|
20 lines
/*
** STDIO.H -- Standard Small-C Definitions
**
** Copyright 1983 L. E. Payne and J. E. Hendrix
*/
#define stdin 0
#define stdout 1
#define stderr 2
#define ERR (-2)
#define EOF (-1)
#define YES 1
#define NO 0
#define NULL 0
#define CR 13
#define LF 10
#define BELL 7
#define SPACE ' '
#define NEWLINE LF